role of Functions in SQL server
What is the role of Functions in SQL server ?
1079
14-Jun-2019
Updated on 14-Jun-2019
Anonymous User
14-Jun-2019EXAMPLE:-
For practice only.
Anonymous User
14-Jun-2019A (SQL) function is a database object in SQL Server. Primarily, this is a set of SQL statements that accept only input parameters, perform actions and return the result. The function can return an only a single value or a table. We can’t use a function to Insert, Update, Delete records in the database tables.